home *** CD-ROM | disk | FTP | other *** search
/ PC Graphics Unleashed / PC Graphics Unleashed.iso / ch12 / install.bat < prev   
DOS Batch File  |  1994-10-10  |  2KB  |  54 lines

  1. @ECHO OFF
  2. REM %1=DRIVE
  3. REM -----------------------------
  4. ECHO  
  5. ECHO ╔═════════════════════════════════════════════════════╗
  6. ECHO ║                                                     ║
  7. ECHO ║ PC Graphics Unleashed                               ║
  8. ECHO ║                                                     ║
  9. ECHO ║ CD-ROM Installation Program                         ║
  10. ECHO ║                                                     ║
  11. ECHO ╚═════════════════════════════════════════════════════╝
  12. ECHO  
  13. ECHO  
  14. ECHO ─────────────────────────────────────────────────────────────
  15. ECHO   The files for Chapter 12 will be installed to your %1
  16. ECHO   hard drive. You need at least 200K of free space.
  17. ECHO.
  18. ECHO.
  19. ECHO   If this is NOT what you want to do, press the Ctrl + C 
  20. ECHO   keys to stop this batch program.
  21. ECHO ─────────────────────────────────────────────────────────────
  22. ECHO  
  23. ECHO  
  24. ECHO  
  25. PAUSE Paused... press any key to continue the installation
  26. CLS
  27. ECHO  
  28. ECHO ┌───────────────────────────────────────────────────────────────────────┐
  29. ECHO │ The software will now be installed to your %1 hard drive.             │
  30. ECHO │ You'll see a message telling you when the installation is finished.   │
  31. ECHO └───────────────────────────────────────────────────────────────────────┘
  32. IF EXIST C:\PCGU\nul GOTO COPYING
  33. MD C:\PCGU
  34. :COPYING
  35. MD C:\PCGU\CH12
  36. XCOPY \CH12\*.* %1\PCGU\CH12\
  37. CLS
  38. ECHO 
  39. ECHO  
  40. ECHO ═════════════════════════════════════════════════════════════════
  41. ECHO.
  42. ECHO   The installation of the Chapter 12 software is complete.
  43. ECHO   You'll find the files in the %1\PCGU\CH12 directory. 
  44. ECHO.
  45. ECHO   The sample animations and GIF images for this chapter 
  46. ECHO   were not installed to your hard drive. You'll find these files
  47. ECHO   in subdirectories of \CH12 on the CD-ROM.
  48. ECHO.
  49. ECHO ═════════════════════════════════════════════════════════════════
  50. ECHO  
  51. ECHO  
  52. pause
  53. cls
  54.